From: Richard M. Stallman Date: Fri, 17 Jan 1997 07:07:20 +0000 (+0000) Subject: (push_key_description): Print C-j, not TAB. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~82196 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b8cab0060c556213a8bcd7e776035d7246faf9b4;p=emacs.git (push_key_description): Print C-j, not TAB. --- diff --git a/src/keymap.c b/src/keymap.c index 3443b71ef51..71713a1e635 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1566,13 +1566,7 @@ push_key_description (c, p) *p++ = 'A'; *p++ = 'B'; } - else if (c == Ctl('J')) - { - *p++ = 'L'; - *p++ = 'F'; - *p++ = 'D'; - } - else if (c == Ctl('M')) + else if (c == Ctl ('M')) { *p++ = 'R'; *p++ = 'E';